home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day08 / bitbtn.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  1.2 KB  |  40 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef BitBtnH
  3. #define BitBtnH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Buttons.hpp>
  10. #include <vcl\ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TBitBtnForm : public TForm
  13. {
  14. __published:    // IDE-managed Components 
  15.     TLabel *Label1;
  16.     TBitBtn *Retry;
  17.     TBitBtn *Abort;
  18.     TBitBtn *Ignore;
  19.     TBitBtn *Yes;
  20.     TBitBtn *No;
  21.     TBitBtn *OK;
  22.     TBitBtn *Cancel;
  23.     TBitBtn *Close;
  24.     TBitBtn *All;
  25.     TBitBtn *Help;
  26.     TBevel *Bevel1;
  27.     TPanel *Panel1;
  28.     TButton *EnableAllButton;
  29.     TButton *Disable;
  30.     TBitBtn *BitBtn1;
  31.     void __fastcall EnableAllButtonClick(TObject *Sender);
  32. private:        // User declarations
  33. public:         // User declarations
  34.     virtual __fastcall TBitBtnForm(TComponent* Owner);
  35. };
  36. //---------------------------------------------------------------------------
  37. extern TBitBtnForm *BitBtnForm;
  38. //---------------------------------------------------------------------------
  39. #endif
  40.